@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;1,200&display=swap');

*{
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
    'Open Sans', 'Helvetica Neue', sans-serif;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
}

.backg{
    background:linear-gradient(rgba(0, 0, 0, 0.068),rgba(190, 55, 55, 0.623)), url('../img/IMG_0062.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
}

/*navbar start*/
li, a, button{
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, 
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif ;
    font-weight: 500;
    font-size: 19px;
    color: #edf0f1;
    text-decoration: none;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 1%;
    background-color: rgba(0, 0, 0, 0.926);
    width: 100%;
    position: fixed;
    top:0%;
    z-index: 1;
    
}

.logo{
    cursor: pointer;
    width: 10%;
    padding: 0px 10px;
    order: 3;
    margin-left: auto;
    margin-right: 10px;
}

.nav{
    order: 1;
}

.nav_links1{
    list-style: none;
    background-color:none;
    padding: 0px;
}

.nav_links1 li{
    display: inline-block;
    padding: 8px;
    margin: 0px 0px;
    background-color: none;
    border-radius: 10px;
}

.nav_links1 li:nth-child(1){
    padding: 0px 0px 0px 0px;
    color:  blue;
    margin: 0px 0px 0px -11px;
}

.nav_links1 li a{
    transition: all 0.3s ease 0s;
    background-color: none;
    padding:  8px;
}

.nav_links1 li a:hover{
    color: rgb(169, 34, 0);
    background-color: white;
}

.cta{
    background-color: none;
    border-radius: 50px;
    padding: 0px 0px;
    margin: 0px 30px;
    order: 2;
}

.button{
    padding: 4px 15px;
    background-color: rgb(169, 34, 0);
    border: 1px solid rgb(169, 34, 0) ;
    border-radius: 10px;
    margin-left: 20px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.button:hover{
    background-color: rgb(255, 255, 255);
    color: rgb(169, 34, 0) ;
}
/*navbar end*/

/*screen resize start*/

@media (max-width:425px){
    header{
        display: hidden;
    }
    .logo{
        display: none;
    }
    .nav{
        display: none;
    }
    .cta{
        display: none;
    }
}



/*screen resize end*/

.pictag{
    position: absolute;
    background-color: black;
    padding: 15px 25px;
    margin: 10px;
    color: white;
    font-size:30px ;
    font-weight: bolder;
    top: 80%;
    left: 5%;
    transition: ease 0.2s ;
}

.pictag:hover{
    background-color: rgb(179, 37, 37);
    background-color: white;
    color: black;
    transition: ease 0.2s ;
    cursor: pointer;
}

.ourset{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: clamp(3.0rem, 5.0vw, 7.0rem);
    font-weight: lighter;
}

.Meet_the_crew{
    color: black;
    text-decoration: none;
    text-align: center;
    font-size: larger; 
    padding: 20px;
}

.Meet_the_crew a{
    text-decoration: none;
    color: black;
}

.Meet_the_crew a:hover{
    color: brown;
    
}

/*circle image part start*/
.circle_img_cont{
    margin-top:10vh;
    width: 100%;
    max-height: auto;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:center;
}

.circle_img_cont .cricle_block{
    padding: 10px;
    margin: 10px auto;
    display: flex;
    flex-direction:column;
    justify-content: center;
    position: relative;
    flex-basis: 23%;
}

@media screen and (max-width: 767px){
    .circle_img_cont .cricle_block{
        flex-basis: 100%;
    }
}

.circle_img_cont .cricle_block img{
    max-width: 45%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-radius: 50%;
    transition: .5s;
    cursor: pointer;
    box-shadow: 2px 5px 21px 5px rgba(70, 63, 63, 0.508);
    position: relative;
    left: 30%;
}

.circle_img_cont .cricle_block img:hover {
    opacity: .5;
    transition: .2s;
    box-shadow: 2px 5px 21px 5px rgba(255, 255, 255, 0);
}

.circle_img_cont .cricle_block .circle_desc{
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 15px;
    position: relative;
    left: 3%; 
    top: 0%;
}

.circle_img_cont .cricle_block .circle_desc h2{
    font-size: 40px;
    padding: 5px;
}

.circle_img_cont .cricle_block .circle_desc p{
    font-size: 20px;
    margin-bottom: 15px;
}

.circle_img_cont .cricle_block .circle_desc a{
    color: #fff;
    padding: 5px;
    font-size: 12px;
    background-color: crimson;
    border-radius: 10px;
    transition: all ease-in 0.2s;
    box-shadow: 0px 2px 5px 2px rgba(211, 69, 69, 0.782);

}

.circle_img_cont .cricle_block .circle_desc a:hover{
    color: crimson;
    background-color: rgb(199, 199, 199);
    text-decoration: none;
    transition: all ease-in 0.2s;
    box-shadow: 2px 5px 21px 5px rgba(70, 63, 63, 0);
}


/*circle image part end*/

#backgrond{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    margin-top:15vh;
    margin-bottom: 20vh;
    background-color: rgb(41, 12, 12);
}

.left-part{
    flex-basis:25%;
    margin: 30px auto;
}

.left-part h1{
    margin: 10px 30px;
    font-size: 40px;
    font-weight: 300;
    color: #fff;
}

.left-part p{
    margin: 10px;
    font-size: 15px;
    color: #fff;
}

.left-part span{
    font-size: 60px;
    font-weight: 600;
    color: crimson;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.right-part{
    flex-basis: 75%;
    margin: 30px auto;
}

.right-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}

.image-box{
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    background-color: #fff;
    position: relative;
    width: 320px;
    max-width: 100%;
    color: black;
}

.image-box .img{
    width: 100%;
    
}

.image-box .info{
    margin: 10px;
    padding: 10px;
    text-align: left;
}

.image-box .info h3{
    margin: 2px 10px;
    font-size: 30px;
    font-weight: 200;
}

.image-box .info p{
    margin: 10px;
    font-size: 17px;
    line-height: 1.2;
}

.image-box img{
    width: 100%;
}

@media screen and (max-width: 770px){
    .left-part{
        flex-basis:100%;
    }

    .right-part{
        flex-basis: 100%;
    }
}

/*something to keep start */

/*gallery start*/
.galleryBody{
    margin: 5em 0px;
    padding: 10px ;
    background:  linear-gradient(rgba(0, 0, 0, 0.898),rgba(0, 0, 0, 0.898)), url('../img/IMG_8953.JPG');
    background-size: cover;
    font-family: sans-serif;
    top: 0px;
}

.galleryBody p{
    color: #ccc;
    text-align: center;
    font-size: clamp( 2.0rem, 3.50vw, 7.0rem);
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 100;
    padding: 10px;
    margin: 15px;
}

 .details .content .see_more p{
    font-size: clamp( 2.0rem, 3.0vw, 7.0rem);
    font-weight: 500;
    color: black;
    cursor: pointer;
}

.galleryBody p span{
    color: crimson;
    font-size: clamp( 2.0rem, 5.0vw, 7.0rem);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 600;

}

.container{
    max-width: 100%;
    margin: 50px auto 0;
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
    
}

.container .box{
    position: relative;
    max-width: 630px;
    max-height: auto;
    background: #ff0;
    margin: 20px auto ;
    box-sizing: border-box;
    display: inline-block;
    left: 0%;
    box-shadow: 2px 5px 21px 2px rgba(70, 63, 63, 0.781);
    border-radius: 10px;    
    
}

.container .box .clickMe{
    position: absolute;
    top: -19%;
    left: 35%;
}

.container .box .clickMe p{
    font-size: clamp( 1.0rem, 1.50vw, 7.0rem);

}


.container .box .imgBox{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.container .box .imgBox img{
    max-width: 100%;
    transition: transform 1.5s;   
    
}

.container .box:hover .imgBox img{
    transform: scale(1.2);
    
}

.container .box .details{
    text-align: center;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background:linear-gradient( rgba(0, 0, 0, 0.322),rgba(211, 25, 25, 0.871));
    transform: scaleY(0);
    transition: transform 0.5s;
    border-radius: 10px;
    max-width: 100%;
}

.container .box:hover .details{
    
    transform: scaleY(1);
}

.container .box .details .content{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    padding: 15px;
    color:white;
    
}

.container .box .details .content h2{
    margin: 0;
    padding: 0;
    font-size: clamp(0.9rem, 2.5vw, 2.7rem);
    color:crimson;
}

.container .box .details .content p{
    margin: 10px 0 0 ;
    padding: 0;
    font-size: clamp(0.6rem, 1.5vw, 1.6rem);
    color: white;
    
}

/*Modal start*/
/*Modal boy start*/
.button01{
    padding: 0em;
    background-color: transparent;
    color:deepskyblue;
    border: 0;
    font-size:25px;
    font-weight: 600;
    margin-left: 5px;
    cursor: pointer;
    transition: all ease 0.2s;
}

.button01:hover{
    color: #fff;
    transition: all ease 0.2s;
}

.modal0{
    display:none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content0{
    background-color: #f4f4f4;
    margin: 5% auto;
    width: 60%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2),0 7px 20px 0 rgba(0, 0, 0, 0.2);
    animation-name: modalopen;
    animation-duration: 1s;
}

.modal-header0{
    background-color: crimson;
    padding: 15px;
    color: #fff;
    font-size: 25px;
}

.modal-body0{
    padding: 10px 20px;
    line-height: 1.6;
    font-size: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
    'Open Sans', 'Helvetica Neue', sans-serif;
}

.modal-body0 p {
    padding: 10px 20px;
    line-height: 1.6;
    font-size: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
    'Open Sans', 'Helvetica Neue', sans-serif;
}

.modal-body0 span {
    margin-left: 50px;
    font-weight:400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
    'Open Sans', 'Helvetica Neue', sans-serif;
}

.modal-footer0{
    background-color: brown;
    padding: 10px;
    color: #fff;
    text-align: center;
}

.modal-header0 h2, .modal-footer0 h3{
    margin: 0;
}

.closeBtn0{
    color: #fff;
    float: right;
    font-size: 30px;
    cursor: pointer;
}

.closeBtn0:hover, .closeBtn0:focus{ 
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width: 770px){
    .modal-content0{
        width: 90%;
    }
}

@keyframes modalopen{
    from{opacity:0}
    to{opacity: 1}
}
/*Modal boy end*/


/*Modal girl start*/
.button02{
    padding: 0em;
    background-color: transparent;
    color:deepskyblue;
    border: 0;
    font-size:25px;
    font-weight: 600;
    margin-left: 5px;
    cursor: pointer;
    transition: all ease 0.2s;
}

.button02:hover{
    color: #fff;
    transition: all ease 0.2s;
}

.modal2{
    display:none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content2{
    background-color: #f4f4f4;

    margin: 5% auto;
    width: 60%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2),0 7px 20px 0 rgba(0, 0, 0, 0.2);
    animation-name: modalopen;
    animation-duration: 1s;
}

@media screen and (max-width: 770px){
    .modal-content2{
        width: 90%;
    }
}


.modal-header2{
    background-color: crimson;
    padding: 15px;
    color: #fff;
    font-size: 25px;
}

.modal-body2{
    padding: 10px 20px;
    line-height: 1.6;
    font-size: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
    'Open Sans', 'Helvetica Neue', sans-serif;
}

.modal-body2 p {
    padding: 10px 20px;
    line-height: 1.6;
    font-size: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
    'Open Sans', 'Helvetica Neue', sans-serif;
}

.modal-body2 span {
    margin-left: 50px;
    font-weight:400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
    'Open Sans', 'Helvetica Neue', sans-serif;
}

.modal-footer2{
    background-color: brown;
    padding: 10px;
    color: #fff;
    text-align: center;
}

.modal-header2 h2, .modal-footer2 h3{
    margin: 0;
}

.closeBtn2{
    color: #fff;
    float: right;
    font-size: 30px;
    cursor: pointer;
}

.closeBtn2:hover, .closeBtn2:focus{ 
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

@keyframes modalopen{
    from{opacity:0}
    to{opacity: 1}
}
/*Modal girl end*/
/*Modal end*/


/*gallery end*/

/*something to keep end */


/*fotter start*/
footer{
    position: relative;
    width: auto;
    margin-top: 8rem;
    height: auto;
    padding: 50px 50px;
    background-color: #111;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .container0{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

footer .container0 .sec{
    margin-right: 30px;

}

footer .container0 .sec.aboutus{
    width: 40%;
}

footer .container0  h2{
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}

footer .container0  h2:before{
    content: '';    
    position: absolute;
    bottom: -5px;
    left: 0;
    width:50px  ;
    height: 2px;
    background-color: brown;
}

footer p{
    color: #999;
}

.sci{
    margin-top: 20px;
    display: flex;
}

.sci li{
    list-style: none;
}

.sci li a{
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
    transition: all ease 0.3s;
}

.sci li a:hover{
    background: brown;
    transition: all ease 0.3s;
}

.sci li a .fab{
    color: #fff;
    font-size: 20px;
    transition: all ease 0.3s;
}

.quickLinks{
    position: relative;
    width: 25%;
}

.quickLinks ul li {
    list-style: none;
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    transition: all ease 0.25s;
}

.quickLinks ul li a{
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    transition: all ease 0.25s;
}

.quickLinks ul li a:hover{
    color: #fff;
    transition: all ease 0.25s;
    padding-left: 8px;
}

.contact0{
    width: calc(35% - 60px);
    margin-right: 0 !important;
}

.contact0 .info0{
    position: relative;
}

.contact0 .info0 li {
    display: flex;
    margin-bottom: 16px;
}

.contact0 .info0 li span:nth-child(1) {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}

.contact0 .info0 li span{
    color: #999;
}

.contact0 .info0 li a{
    color: #999;
    text-decoration: none;
}

.contact0 .info0 li a:hover{
    color: #fff;
    text-decoration: none;
}

.copyrightText{
    width: auto;
    background-color: #181818;
    padding: 8px 50px;
    text-align: center;
    color: #999;
}

/*responsive code start*/

@media (max-width: 991px ){
    footer{
        padding: 40px;
    }

    footer .container0{
        flex-direction: column;
    }

    footer .container0 .sec{
        margin: 0px auto;
        margin-bottom: 40px;
    }

    footer .container0 .sec.aboutus,.quickLinks,.contact0{
        width: 100%;
    }

    .copyrightText{
        padding: 8px 50px;
    }

}
/*responsive code end*/
/*fotter end*/



/*side nav start */
#sideNav{
    width: 210px;
    height: 100vh;
    position: fixed;
    right: -210px;
    top: 0;
    background:white;
    z-index: 2;
    transition: 0.5s;
    box-shadow: 2px 5px 21px 2px rgba(70, 63, 63, 0.781);
    
}

nav ul li{
    list-style: none;
    margin: 0px;
    margin-top: 0px;
    transition: 0.5s;
    text-align: center;
    font-size: 50px;
    padding: 30px;
    display: flex;
    flex-wrap: nowrap; 
}



nav ul li:hover{
    background-color: rgb(218, 212, 212);
    padding: 30px 40px;
    font-size: 30px;
    transition: 0.5s;

}

#sideNav nav ul li:nth-child(1){
    margin-top: 15vh;
}

nav ul li a{
    text-decoration: none;
    color: brown;
    margin-right: 100px;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    padding: 0px;
    margin: 10px;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
    'Open Sans', 'Helvetica Neue', sans-serif;

}

#manuBtn{
    width: 40px;
    height: 40px;
    background:brown ;
    text-align: center;
    position: fixed;
    right: 0.5%;
    top:6%;
    border-radius: 3px;
    z-index: 3;
    cursor: pointer;
    box-shadow: 1px 2px 20px 1px rgba(70, 63, 63, 0.781);
}

#manuBtn img{
    width: 30px;
    margin-top: 8px;
}
/*side nav end */


